home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Arsenal / OS2 Arsenal v1.0 (Disc 2)(Arsenal Computer).ISO / os2_inet / progcsd.exe / RPC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-12  |  3.1 KB  |  69 lines

  1. /********************************************************copyrite.xmc***/
  2. /*                                                                     */
  3. /*   Licensed Materials - Property of IBM                              */
  4. /*                                                                     */
  5. /*   This module is "Restricted Materials of IBM":                     */
  6. /*      Program Number:   5798RXW                                      */
  7. /*      Program Name:     IBM TCP/IP Version 1.2 for OS/2              */
  8. /*   (C) Copyright IBM Corporation. 1990, 1991.                        */
  9. /*                                                                     */
  10. /*   See IBM Copyright Instructions.                                   */
  11. /*                                                                     */
  12. /********************************************************copyrite.xmc***/
  13. /*
  14.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  15.  * unrestricted use provided that this legend is included on all tape
  16.  * media and as a part of the software program in whole or part.  Users
  17.  * may copy or modify Sun RPC without charge, but are not authorized
  18.  * to license or distribute it to anyone else except as part of a product or
  19.  * program developed by the user.
  20.  *
  21.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  22.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  23.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  24.  *
  25.  * Sun RPC is provided with no support and without any obligation on the
  26.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  27.  * modification or enhancement.
  28.  *
  29.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  30.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  31.  * OR ANY PART THEREOF.
  32.  *
  33.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  34.  * or profits or other special, indirect and consequential damages, even if
  35.  * Sun has been advised of the possibility of such damages.
  36.  *
  37.  * Sun Microsystems, Inc.
  38.  * 2550 Garcia Avenue
  39.  * Mountain View, California  94043
  40.  */
  41. /*      @(#)rpc.h 1.1 86/02/03 SMI      */
  42.  
  43. /*
  44.  * rpc.h, Just includes the billions of rpc header files necessary to
  45.  * do remote procedure calling.
  46.  *
  47.  * Copyright (C) 1984, Sun Microsystems, Inc.
  48.  */
  49.  
  50. #include <rpc\rpctypes.h>          /* some typedefs */
  51. #include <netinet\in.h>
  52.  
  53. /* external data representation interfaces */
  54. #include <rpc\xdr.h>            /* generic (de)serializer */
  55.  
  56. /* Client side only authentication */
  57. #include <rpc\auth.h>           /* generic authenticator (client side) */
  58.  
  59. /* Client side (mostly) remote procedure call */
  60. #include <rpc\clnt.h>           /* generic rpc stuff */
  61.  
  62. /* semi-private protocol headers */
  63. #include <rpc\rpc_msg.h>        /* protocol for rpc messages */
  64. #include <rpc\auth_uni.h>      /* protocol for unix style cred */
  65.  
  66. /* Server side only remote procedure callee */
  67. #include <rpc\svc.h>            /* service manager and multiplexer */
  68. #include <rpc\svc_auth.h>       /* service side authenticator */
  69.